home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / dev / c / ctags.lha / ctags-3.0.3 / get.h < prev    next >
C/C++ Source or Header  |  1999-02-17  |  1KB  |  34 lines

  1. /*****************************************************************************
  2. *   $Id: get.h,v 7.1 1998/12/07 01:38:00 darren Exp $
  3. *
  4. *   Copyright (c) 1998, Darren Hiebert
  5. *
  6. *   This source code is released for free distribution under the terms of the
  7. *   GNU General Public License.
  8. *
  9. *   External interface to get.c
  10. *****************************************************************************/
  11. #ifndef _GET_H
  12. #define _GET_H
  13.  
  14. /*============================================================================
  15. =   Include files
  16. ============================================================================*/
  17. #include "general.h"
  18. #include "ctags.h"    /* to define langType */
  19.  
  20. /*============================================================================
  21. =   Function prototypes
  22. ============================================================================*/
  23. extern boolean isBraceFormat __ARGS((void));
  24. extern unsigned int getDirectiveNestLevel __ARGS((void));
  25. extern void cppInit __ARGS((const boolean state));
  26. extern void cppBeginStatement __ARGS((void));
  27. extern void cppEndStatement __ARGS((void));
  28. extern void cppUngetc __ARGS((const int c));
  29. extern int cppGetc __ARGS((void));
  30.  
  31. #endif    /* _GET_H */
  32.  
  33. /* vi:set tabstop=8 shiftwidth=4: */
  34.